AdHoc ビルドで Firebase Debug View を有効にする
xcode - How to debug Firebase on iOS AdHoc build - Stack Overflow
AppDelegate
に
var newArguments = ProcessInfo.processInfo.arguments
newArguments.append("-FIRDebugEnabled")
ProcessInfo.processInfo.setValue(newArguments, forKey: "arguments")
Firebase.configure() // これより先に設定する
ただし、 Scheme の設定で disable の設定が入ってたら Enable されないので注意。